Delegate
    class DelegateBasedKeyValuesRepo<Key, Value>(readDelegate: ReadKeyValuesRepo<Key, Value>, writeDelegate: WriteKeyValuesRepo<Key, Value>) : KeyValuesRepo<Key, Value> , ReadKeyValuesRepo<Key, Value> , WriteKeyValuesRepo<Key, Value> 
Content copied to clipboard
Constructors
Link copied to clipboard
                fun <Key, Value> DelegateBasedKeyValuesRepo(readDelegate: ReadKeyValuesRepo<Key, Value>, writeDelegate: WriteKeyValuesRepo<Key, Value>)
Content copied to clipboard
Functions
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun get(    k: Key,     pagination: Pagination,     reversed: Boolean): PaginationResult<Value>
Content copied to clipboard
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
open suspend override fun keys(    v: Value,     pagination: Pagination,     reversed: Boolean): PaginationResult<Key>
Content copied to clipboard